.dis{display:black}
.navbg3{background-color:none;}
@media screen and (max-width: 768px)
{.dis{display:none}
.navbg3{background-color:#fff;}
.col-md-5{width:100%}
.col-md-7{width:100%}
}

.container1 {
  position: absolute;
  top: -15px;
 
  right: 350px;
  bottom: 0;
  width: 200px;
  height: 100px;
}
.container1 .search {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
 
  border-radius: 50%;
  transition: all 1s;
  z-index: 4;
  
}
.container1 .search:hover {
  cursor: pointer;
}
.container1 .search::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 10px;
  right: 0;
  bottom: 0;
  left: 14px;
  width: 12px;
  height: 2px;
  background: #ccc;
  transform: rotate(45deg);
  transition: all .5s;
}
.container1 .search::after {
  content: "";
  position: absolute;
  margin: auto;
  top: -5px;
  right: 0;
  bottom: 0;
  left: -5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #ccc;
  transition: all .5s;
}
.container1 input {
  font-family: 'Inconsolata', monospace;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 30px;
  outline: none;
  border: 1px solid #ddd;
  /* background: #c1c1c1; */
  color: #1a1a1a;
  /* text-shadow: 0 0 10px #c1c1c1; */
  padding: 0 50px 0 20px;
  border-radius: 30px;
  /* box-shadow: 0 0 25px 0 #c1c1c1, 0 20px 25px 0 rgba(0, 0, 0, 0.2); */
  transition: all 1s;
  opacity: 0;
  z-index: 5;
  font-weight: bolder;
  letter-spacing: 0.1em;
}
.container1 input:hover {
  cursor: pointer;
}
.container1 input:focus {
  width: 200px;
  opacity: 1;
  cursor: text;
}
.container1 input:focus ~ .search {
  right: -200px;
  background: #1a1a1a;
  z-index: 6;
}
.container1 input:focus ~ .search::before {
  top: 0;
  left: 0;
  width: 25px;
}
.container1 input:focus ~ .search::after {
  top: 0;
  left: 0;
  width: 25px;
  height: 2px;
  border: none;
  background: #1a1a1a;
  border-radius: 0%;
  transform: rotate(-45deg);
}
.container1 input::placeholder {
  color: #1a1a1a;
  opacity: 0.5;
  font-weight: bolder;
}

